home *** CD-ROM | disk | FTP | other *** search
- Path: news.lainet.com!usenet
- From: jason@lainet.com (Jason L. Pollack)
- Newsgroups: comp.lang.c++
- Subject: Ooops, Crashing bug addendum
- Date: 26 Jan 1996 06:45:17 GMT
- Organization: LA Internet (310)442-4670
- Message-ID: <4e9t9t$af0@lainet2.lainet.com>
- NNTP-Posting-Host: a2p10r.lainet.com
- Mime-Version: 1.0
-
- When typing in the text, I forgot to include the static member variable
- list, so class node should look like this:
-
- static class node {
- node(ClassY * it, node* nx) { item = it; nx = next; }
- ClassY * item;
- node * next;
- } list;
-
- Thanks a bunch,
- Jay
-
-